Argument Types
Integer
A numeric value without decimals
Example:
int Integer = 5;
Float
A numeric value with decimals
Example:
float Float = 3.1415;
String
A alphanumeric value, ie a text
Example:
char* String = "A string";